316a05872b358e8388890c04dee48adc45812f71,core/src/main/java/org/apache/calcite/plan/MaterializedViewSubstitutionVisitor.java,ProjectToProjectUnifyRule1,match,#SubstitutionVisitor#MutableRel#MutableRel#,98
Before Change
RexNode newCondition;
try {
newCondition = transformRex(innerFilter.getCondition(),
innerFilter.getInput().getRowType().getFieldList(),
target.getRowType().getFieldList());
} catch (MatchFailed e) {
return null;
After Change
RexNode newCondition;
try {
newCondition = transformRex(innerFilter.condition,
innerFilter.getInput().rowType.getFieldList(),
target.rowType.getFieldList());
} catch (MatchFailed e) {
return null;